home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
WINDBASE
/
JORF1.LZH
/
INSTDOS.BAT
next >
Wrap
DOS Batch File
|
1992-04-01
|
3KB
|
68 lines
echo off
cls
if exist jorffils.zip goto BeginInstall
echo Please be sure the INSTALLATION disk is in the
echo drive, and you are logged to that drive. For
echo instance, if the disk is in Drive A, type "A:"
echo to log to that drive, then type INSTDOS.
goto TheEnd
:BeginInstall
echo ╔═════════════ The JORF Interpreter and Tutorial ═══════════════╗
echo ║ Version 2.0 April 1, 1992 ║▓▓
echo ║ ║▓▓
echo ║ INSTDOS.BAT will create a new directory called C:\JORF and ║▓▓
echo ║ copy the contents of this disk there. This package takes ║▓▓
echo ║ about 1.5 MB hard disk space. If translate programs, or ║▓▓
echo ║ create new JORF Language programs you will need more space. ║▓▓
echo ║ ║▓▓
echo ║ If wish to install this package on another drive, Strike ║▓▓
echo ║ Ctrl-C, and type Y to terminate INSTDOS.BAT. Then, copy ║▓▓
echo ║ all files to the directory you want. Unzip them using ║▓▓
echo ║ PKUNZIP, and start by typing JORF. ║▓▓
echo ║ ║▓▓
echo ║ It is easier to press RETURN, and let INSTDOS.BAT finish. ║▓▓
echo ╚═══════════════════════════════════════════════════════════════╝▓▓
echo ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
pause
cls
if exist c:\jorf\help.jrf goto GetDisk2
echo Creating \JORF Directory
mkdir c:\jorf
echo Unzip sample files
copy jorf.me c:\jorf
copy pkunzip.exe c:\jorf
c:\jorf\pkunzip jorffils.zip c:\jorf
:GetDisk2
if exist jorfdos.zip goto Disk2
echo Please insert Disk 2 into the floppy disk drive
pause
Goto GetDisk2
:Disk2
c:\jorf\pkunzip jorfdos.zip c:\jorf
echo Change Directories to \JORF
c:
cd \jorf
cls
echo ╔════════════════════ Installation Complete ════════════════════╗
echo ║ The JORF Interpreter and Tutorial are now in installed on ║▓▓
echo ║ your hard disk. To start JORF, just type "JORF". ║▓▓
echo ║ ║▓▓
echo ║ The JORF Manual has also been installed. Just print this ║▓▓
echo ║ on any dot matrix or laser printer. The manual is about ║▓▓
echo ║ 190 pages long. It is called MANUAL.TXT ║▓▓
echo ║ ║▓▓
echo ║ Press ENTER to automatically start the Tutorial. ║▓▓
echo ║ ║▓▓
echo ║ (If Tutorial does not display - see JORFFIXS.TXT for info) ║▓▓
echo ╚═══════════════════════════════════════════════════════════════╝▓▓
echo ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
pause
echo on
JORF Tutorial
:TheEnd